home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 52
/
Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso
/
Aminet
/
game
/
patch
/
WHDIGamesU-Z.lzh
/
WayneGretzkyHockey.lha
/
WayneGretzkyHockeyHd
/
Install
< prev
next >
Wrap
Text File
|
2001-09-30
|
5KB
|
239 lines
;****************************
(set #readme-file "ReadMe") ;name of readme file
(set #highs-file "disk.2") ;name of high scores file
(set #cleanup "") ;files to delete after install
(set #last-file1 "disk.1") ;last file the imager should create
(set #last-file1 "disk.2") ;last file the imager should create
;****************************
;----------------------------
; checks if given program is installed, if not abort install
; #program - to check
(procedure P_ChkRun
(if
(= 0 (run ("cd SYS:\nWhich %s" #program)))
("")
(abort
(cat
"You must install \"" #program "\" first!\n"
"It must be accessible via the path.\n"
"You can find it in the WHDLoad package."
)
)
)
)
;****************************
(if
(exists #readme-file)
(if
(= 0 (run ("SYS:Utilities/Multiview %s" #readme-file)))
("")
(run ("SYS:Utilities/More %s" #readme-file))
)
)
(set #program "WHDLoad")
(P_ChkRun)
(set #program "RawDIC")
(P_ChkRun)
(if
(= @user-level 2)
(
(set #CI_drive
(askchoice
(prompt "Select source drive for diskimages")
(default 0)
(choices "DF0:" "DF1:" "DF2:" "DF3:")
(help @askchoice-help)
)
)
(select #CI_drive
(set #CI_drive "DF0:")
(set #CI_drive "DF1:")
(set #CI_drive "DF2:")
(set #CI_drive "DF3:")
)
(set #ignore " IGNOREERRORS")
)
(set #CI_drive "DF0:")
(set #ignore "")
)
(set @default-dest
(askdir
(prompt ("Where should \"%s\" installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
(help @askdir-help)
(default @default-dest)
(disk)
)
)
(set #dest (tackon @default-dest @app-name))
(if
(exists #dest)
(
(set #choice
(askbool
(prompt ("\nDirectory \"%s\" already exists.\n Should it be deleted ?" #dest))
(default 1)
(choices "Delete" "Skip")
(help @askbool-help)
)
)
(if
(= #choice 1)
(run ("Delete \"%s\" \"%s.info\" All" #dest #dest))
)
)
)
(makedir #dest
(help @makedir-help)
(infos)
)
;----------------------------
;----------------------------
(if
(exists ("%s.Glowicon" @app-name))
(set #icon
(askchoice
(prompt "\nWhich icon would you like to install?\n")
(default 0)
(choices "Normal" "NewIcon" "GlowIon")
(help @askchoice-help)
)
)
(set #icon 0)
)
(select #icon
(set #icon ("%s.inf" @app-name))
(set #icon ("%s.newicon" @app-name))
(set #icon ("%s.Glowicon" @app-name))
)
(copyfiles
(help @copyfiles-help)
(source #icon)
(newname ("%s.info" @app-name))
(dest #dest)
)
(tooltype
(dest (tackon #dest @app-name))
(settooltype "Slave")
(settooltype "PreLoad")
)
(tooltype
(dest (tackon #dest @app-name))
(settooltype "PreLoad" "")
(settooltype "Slave" ("%s.Slave" @app-name))
(setdefaulttool "WHDLoad")
(setstack 10240)
(noposition)
)
(copyfiles
(help @copyfiles-help)
(source ("%s.Slave" @app-name ))
(dest #dest)
)
(if
(exists #readme-file)
(copyfiles
(help @copyfiles-help)
(source #readme-file)
(dest #dest)
)
)
(if
(exists ("%s.info" #readme-file))
(
(copyfiles
(help @copyfiles-help)
(source ("%s.info" #readme-file))
(dest #dest)
)
(tooltype
(dest (tackon #dest #readme-file))
(noposition)
)
)
)
(if
(exists #highs-file)
(copyfiles
(help @copyfiles-help)
(source #highs-file)
(dest #dest)
)
)
(copyfiles
(help @copyfiles-help)
(source ("%s.islave" @app-name))
(dest #dest)
)
(working)
(run ("CD \"%s\"\nRawDIC SLAVE=%s.islave SOURCE=%s%s\nDelete %s.islave" #dest @app-name #CI_drive #ignore @app-name))
(if
(exists (tackon #dest #last-file1))
("")
(abort "Diskimaging was not successful!\nRawDIC was unable to create all needed files!")
)
;----------------------------
(set #game-version
(askchoice
(prompt "\nDo you want install your old save disk?\n")
(default 0)
(choices "Yes" "No")
(help @askchoice-help)
)
)
(select #game-version
(
(copyfiles
(help @copyfiles-help)
(source ("%sSave.islave" @app-name))
(dest #dest)
)
(working)
(run ("CD \"%s\"\nRawDIC SLAVE=%sSave.islave SOURCE=%s%s\nDelete %sSave.islave" #dest @app-name #CI_drive #ignore @app-name))
; (if
; (exists (tackon #dest #last-file2))
; ("")
; (abort "Diskimaging was not successful!\nRawDIC was unable to create all needed files!")
; )
)
(
(working)
)
)
;----------------------------
(run ("Delete %s ALL QUIET FORCE" #cleanup)) ;delete temporary files
(exit)